[This topic is pre-release documentation and is subject to change in future releases. Blank topics are included as placeholders.]
Overload List
Name | Description | |
---|---|---|
Set<(Of <T>)>Set<(Of <T>)>New()() |
Creates a new Set. The Equals method and GetHashCode method on T
will be used to compare items for equality.
| |
Set<(Of <T>)>Set<(Of <T>)>New(IEnumerable<(Of <T>)>) |
Creates a new Set. The Equals method and GetHashCode method on T
will be used to compare items for equality.
| |
Set<(Of <T>)>Set<(Of <T>)>New(IEqualityComparer<(Of <T>)>) |
Creates a new Set. The Equals and GetHashCode method of the passed comparer object
will be used to compare items in this set.
| |
Set<(Of <T>)>Set<(Of <T>)>New(IEnumerable<(Of <T>)>, IEqualityComparer<(Of <T>)>) |
Creates a new Set. The Equals and GetHashCode method of the passed comparer object
will be used to compare items in this set. The set is
initialized with all the items in the given collection.
|